home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / gtk-2.0 / gtk / gtkaccelmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-04-25  |  3.6 KB  |  97 lines

  1. /* GTK - The GIMP Toolkit
  2.  * Copyright (C) 1998, 2001 Tim Janik
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Lesser General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the GNU
  12.  * Lesser General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19. #ifndef __GTK_ACCEL_MAP_H__
  20. #define __GTK_ACCEL_MAP_H__
  21.  
  22.  
  23. #include <gtk/gtkaccelgroup.h>
  24.  
  25. G_BEGIN_DECLS
  26.  
  27. /* --- global GtkAccelMap object --- */
  28. #define GTK_TYPE_ACCEL_MAP                (gtk_accel_map_get_type ())
  29. #define GTK_ACCEL_MAP(accel_map)      (G_TYPE_CHECK_INSTANCE_CAST ((accel_map), GTK_TYPE_ACCEL_MAP, GtkAccelMap))
  30. #define GTK_ACCEL_MAP_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ACCEL_MAP, GtkAccelMapClass))
  31. #define GTK_IS_ACCEL_MAP(accel_map)      (G_TYPE_CHECK_INSTANCE_TYPE ((accel_map), GTK_TYPE_ACCEL_MAP))
  32. #define GTK_IS_ACCEL_MAP_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ACCEL_MAP))
  33. #define GTK_ACCEL_MAP_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ACCEL_MAP, GtkAccelMapClass))
  34.  
  35. typedef struct _GtkAccelMap      GtkAccelMap;
  36. typedef struct _GtkAccelMapClass GtkAccelMapClass;
  37.  
  38. /* --- notifier --- */
  39. typedef void (*GtkAccelMapForeach)        (gpointer     data,
  40.                          const gchar    *accel_path,
  41.                          guint           accel_key,
  42.                          GdkModifierType accel_mods,
  43.                          gboolean     changed);
  44.  
  45.  
  46. /* --- public API --- */
  47.  
  48. #ifdef G_OS_WIN32
  49. /* Reserve old names for DLL ABI backward compatibility */
  50. #define gtk_accel_map_load gtk_accel_map_load_utf8
  51. #define gtk_accel_map_save gtk_accel_map_save_utf8
  52. #endif
  53.  
  54. void       gtk_accel_map_add_entry    (const gchar        *accel_path,
  55.                      guint             accel_key,
  56.                      GdkModifierType         accel_mods);
  57. gboolean   gtk_accel_map_lookup_entry    (const gchar        *accel_path,
  58.                      GtkAccelKey        *key);
  59. gboolean   gtk_accel_map_change_entry    (const gchar        *accel_path,
  60.                      guint             accel_key,
  61.                      GdkModifierType     accel_mods,
  62.                      gboolean         replace);
  63. void       gtk_accel_map_load        (const gchar        *file_name);
  64. void       gtk_accel_map_save        (const gchar        *file_name);
  65. void       gtk_accel_map_foreach    (gpointer         data,
  66.                      GtkAccelMapForeach     foreach_func);
  67. void       gtk_accel_map_load_fd    (gint             fd);
  68. void       gtk_accel_map_load_scanner    (GScanner        *scanner);
  69. void       gtk_accel_map_save_fd    (gint             fd);
  70.  
  71. void       gtk_accel_map_lock_path      (const gchar            *accel_path);
  72. void       gtk_accel_map_unlock_path    (const gchar            *accel_path);
  73.  
  74. /* --- filter functions --- */
  75. void    gtk_accel_map_add_filter     (const gchar        *filter_pattern);
  76. void    gtk_accel_map_foreach_unfiltered (gpointer         data,
  77.                       GtkAccelMapForeach     foreach_func);
  78.  
  79. /* --- notification --- */
  80. GType        gtk_accel_map_get_type (void) G_GNUC_CONST;
  81. GtkAccelMap *gtk_accel_map_get      (void);
  82.  
  83.  
  84. /* --- internal API --- */
  85. void        _gtk_accel_map_init        (void);
  86.  
  87. void            _gtk_accel_map_add_group     (const gchar   *accel_path,
  88.                           GtkAccelGroup *accel_group);
  89. void            _gtk_accel_map_remove_group      (const gchar   *accel_path,
  90.                           GtkAccelGroup *accel_group);
  91. gboolean    _gtk_accel_path_is_valid     (const gchar    *accel_path);
  92.  
  93.  
  94. G_END_DECLS
  95.  
  96. #endif /* __GTK_ACCEL_MAP_H__ */
  97.